home *** CD-ROM | disk | FTP | other *** search
/ Champak 83 / (Vol 83) My Disc.iso / Games / blobz.swf / scripts / frame_187 / DoAction.as
Text File  |  2008-08-08  |  545b  |  33 lines

  1. continuebtn.onRelease = function()
  2. {
  3.    if(redPoints > 1)
  4.    {
  5.       gotoAndStop(415);
  6.    }
  7.    else if(round == "round1")
  8.    {
  9.       round = "round2";
  10.       gotoAndPlay(7);
  11.    }
  12.    else if(round == "round2")
  13.    {
  14.       round = "roundfinal";
  15.       gotoAndPlay(7);
  16.    }
  17.    else
  18.    {
  19.       round = "round1";
  20.       gotoAndStop(7);
  21.    }
  22. };
  23. continuebtn.onKeyDown = function()
  24. {
  25.    if(Key.getCode() == 32)
  26.    {
  27.       Key.removeListener(continuebtn);
  28.       this.onRelease();
  29.    }
  30. };
  31. Key.addListener(continuebtn);
  32. stop();
  33.